nexus/tsconfig.json

25 lines
455 B
JSON
Raw Permalink Normal View History

2018-11-03 05:11:51 +08:00
{
"compilerOptions": {
"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",
"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,
"resolveJsonModule": true
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
}