kylin-code/build/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
718 B
JSON
Raw Normal View History

2022-06-14 14:37:10 +08:00
{
"compilerOptions": {
2024-04-30 20:57:13 +08:00
"target": "es2022",
"lib": [
"ES2020"
],
2022-06-14 14:37:10 +08:00
"module": "commonjs",
2024-04-30 20:57:13 +08:00
"alwaysStrict": true,
2022-06-14 14:37:10 +08:00
"removeComments": false,
"preserveConstEnums": true,
2024-04-30 20:57:13 +08:00
"sourceMap": true,
2022-06-14 14:37:10 +08:00
"resolveJsonModule": true,
// enable JavaScript type checking for the language service
// use the tsconfig.build.json for compiling which disable JavaScript
// type checking so that JavaScript file are not transpiled
"allowJs": true,
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"newLine": "lf",
"noEmit": true
},
"include": [
"**/*.ts",
"**/*.js"
],
"exclude": [
"node_modules/**"
]
}