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