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