dance/tsconfig.json

14 lines
322 B
JSON
Raw 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",
2021-05-04 23:09:29 +03:00
"lib": ["ES2019", "ESNext.WeakRef"],
2019-04-04 11:43:47 +03:00
"sourceMap": true,
"strict": true,
"noImplicitReturns": true,
"preserveConstEnums": true,
2019-04-04 11:43:47 +03:00
},
2021-05-04 23:09:29 +03:00
"exclude": ["node_modules", ".vscode-test", "src/commands/old-*.ts"],
2019-04-04 11:43:47 +03:00
}