ds4/tsconfig.json

20 lines
561 B
JSON
Raw Normal View History

2020-12-31 02:29:27 +01:00
{
"compilerOptions": {
"outDir": "dist",
"target": "ES2021",
"lib": ["ES2021", "DOM"],
"types": ["@types/jquery", "handlebars"],
2021-01-26 03:55:18 +01:00
"esModuleInterop": true,
2021-02-06 22:09:07 +01:00
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": true,
2022-02-13 18:34:03 +01:00
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"checkJs": false,
"allowJs": true
2021-01-29 11:23:34 +01:00
},
"include": ["src", "client", "common"]
2020-12-31 02:29:27 +01:00
}