dance/tsconfig.json

18 lines
434 B
JSON
Raw Permalink Normal View History

2019-04-04 11:43:47 +03:00
{
"compilerOptions": {
2021-05-04 23:09:29 +03:00
"module": "CommonJS",
"target": "ES2018",
2019-04-04 11:43:47 +03:00
"outDir": "out",
"lib": ["ES2020", "ESNext.WeakRef"],
2019-04-04 11:43:47 +03:00
"sourceMap": true,
"strict": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"preserveConstEnums": true,
2022-07-01 13:21:20 +03:00
"strictNullChecks": true,
"noImplicitAny": true,
2019-04-04 11:43:47 +03:00
},
2022-07-01 13:21:20 +03:00
"exclude": ["node_modules", ".vscode-test"],
2019-04-04 11:43:47 +03:00
}