2020-06-26 00:31:25 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"lib": ["es2015", "es2016", "es2017", "dom"],
|
|
|
|
|
"strict": false,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"typeRoots": ["node_modules/@types"],
|
|
|
|
|
"types": ["node", "mocha", "chai"]
|
|
|
|
|
},
|
2020-06-27 18:01:18 +08:00
|
|
|
"include": ["src", "test", "script"],
|
2020-06-26 00:31:25 +08:00
|
|
|
"exclude": ["scripts/**/*", "build/**/*", "migrations/**/*"],
|
|
|
|
|
"compileOnSave": true
|
|
|
|
|
}
|