2019-10-11 07:41:16 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": [
|
|
|
|
"es6"
|
|
|
|
],
|
|
|
|
"newLine": "lf",
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2020-05-11 20:59:39 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": true
|
2019-10-11 07:41:16 +08:00
|
|
|
},
|
2020-05-11 20:59:39 +08:00
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
2019-10-11 07:41:16 +08:00
|
|
|
}
|