2020-02-04 20:27:46 +01: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 22:05:13 +02:00
|
|
|
"tsBuildInfoFile": "./.cache/tsbuildinfo",
|
2020-02-04 20:27:46 +01:00
|
|
|
"incremental": true,
|
2021-01-22 00:39:04 +01:00
|
|
|
"typeRoots": ["./node_modules/@types", "./typings", "./test/node_modules/@types"],
|
2020-11-04 03:11:14 +01:00
|
|
|
"downlevelIteration": true
|
2020-02-04 20:27:46 +01:00
|
|
|
},
|
2021-01-21 00:37:49 +01:00
|
|
|
"include": ["./src/**/*.ts"],
|
2021-01-26 00:34:32 +01:00
|
|
|
"exclude": ["/test", "/lib", "/ci", "/doc"]
|
2020-02-04 20:27:46 +01:00
|
|
|
}
|