2018-05-26 04:17:19 +08:00
|
|
|
{
|
2020-08-18 15:47:53 +08:00
|
|
|
"extends": "@tsconfig/node10/tsconfig.json",
|
2018-05-26 04:17:19 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"pretty": true,
|
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./lib",
|
|
|
|
"skipLibCheck": true,
|
2018-06-10 12:20:03 +08:00
|
|
|
"noImplicitAny": true,
|
2018-06-12 06:00:22 +08:00
|
|
|
"esModuleInterop": true,
|
2020-08-18 15:47:53 +08:00
|
|
|
"declaration": true,
|
2019-03-13 06:15:54 +08:00
|
|
|
"resolveJsonModule": true
|
2018-05-26 04:17:19 +08:00
|
|
|
},
|
2020-08-18 15:47:53 +08:00
|
|
|
"include": ["src/**/*"],
|
2018-05-26 04:17:19 +08:00
|
|
|
"compileOnSave": false
|
|
|
|
}
|