kylin-code/extensions/tsconfig.base.json

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

41 lines
853 B
JSON
Raw Permalink Normal View History

2022-06-14 14:37:10 +08:00
{
"compilerOptions": {
"target": "es2020",
"lib": [
"ES2016",
"ES2017.Object",
"ES2017.String",
"ES2017.Intl",
"ES2017.TypedArrays",
"ES2018.AsyncIterable",
"ES2018.AsyncGenerator",
"ES2018.Promise",
"ES2018.Regexp",
"ES2018.Intl",
"ES2019.Array",
"ES2019.Object",
"ES2019.String",
"ES2019.Symbol",
"ES2020.BigInt",
"ES2020.Promise",
"ES2020.String",
"ES2020.Symbol.WellKnown",
2024-04-30 20:57:13 +08:00
"ES2020.Intl",
"ES2021.Promise",
"ES2021.String",
"ES2021.WeakRef"
2022-06-14 14:37:10 +08:00
],
"module": "commonjs",
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true
}
}