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