2020-02-05 03:27:46 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-06-24 01:19:50 +08:00
|
|
|
"target": "es2020",
|
2020-02-05 03:27:46 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"outDir": "./out",
|
2021-06-24 01:19:50 +08:00
|
|
|
"declaration": false,
|
2020-02-05 03:27:46 +08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
2020-08-05 04:05:13 +08:00
|
|
|
"tsBuildInfoFile": "./.cache/tsbuildinfo",
|
2020-02-05 03:27:46 +08:00
|
|
|
"incremental": true,
|
2021-01-22 07:39:04 +08:00
|
|
|
"typeRoots": ["./node_modules/@types", "./typings", "./test/node_modules/@types"],
|
2020-11-04 10:11:14 +08:00
|
|
|
"downlevelIteration": true
|
2020-02-05 03:27:46 +08:00
|
|
|
},
|
2021-01-21 07:37:49 +08:00
|
|
|
"include": ["./src/**/*.ts"],
|
2021-01-26 07:34:32 +08:00
|
|
|
"exclude": ["/test", "/lib", "/ci", "/doc"]
|
2020-02-05 03:27:46 +08:00
|
|
|
}
|