2019-04-01 03:35:23 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2020-08-26 09:55:57 +00:00
|
|
|
"target": "esnext",
|
2019-04-01 03:35:23 +00:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "out",
|
|
|
|
"declaration": true,
|
2020-08-26 09:55:57 +00:00
|
|
|
"typeRoots": ["node_modules/@types"]
|
2019-04-01 03:35:23 +00:00
|
|
|
},
|
2020-08-26 09:55:57 +00:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["src"]
|
|
|
|
}
|