2018-11-03 05:11:51 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2019-11-08 05:39:33 +08:00
|
|
|
"target": "es2016",
|
2019-10-17 04:55:53 +08:00
|
|
|
"downlevelIteration": true,
|
2018-11-09 06:58:10 +08:00
|
|
|
"esModuleInterop": true,
|
2020-05-13 01:58:58 +08:00
|
|
|
"moduleResolution": "Node",
|
2019-11-08 05:39:33 +08:00
|
|
|
"lib": ["es2016"],
|
2020-05-13 01:58:58 +08:00
|
|
|
"rootDir": "src",
|
2018-11-09 06:58:10 +08:00
|
|
|
"strict": true,
|
2019-02-01 21:48:08 +08:00
|
|
|
"noUnusedLocals": true,
|
2018-11-19 04:06:28 +08:00
|
|
|
"importHelpers": true,
|
2021-03-28 04:26:13 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"importsNotUsedAsValues": "error"
|
2018-11-09 06:58:10 +08:00
|
|
|
},
|
2021-02-20 12:51:18 +08:00
|
|
|
"exclude": [
|
|
|
|
|
"./examples",
|
|
|
|
|
"./scripts",
|
|
|
|
|
"./dist",
|
|
|
|
|
"./tests",
|
|
|
|
|
"./website",
|
|
|
|
|
"./gulpfile.ts",
|
|
|
|
|
"./package.json",
|
|
|
|
|
"./docs"
|
|
|
|
|
]
|
2018-11-03 05:11:51 +08:00
|
|
|
}
|