Files
zkldi_Tachi/sieglinde/tsconfig.json
T
2022-03-08 17:34:22 +00:00

24 lines
360 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": [
"ES2019"
],
"declaration": true,
"strict": true,
"allowJs": false,
"esModuleInterop": true,
"sourceMap": true,
"outDir": "./js",
"typeRoots": [
"@types",
],
},
"include": [
"src/**/*.ts",
],
"exclude": [
"node_modules",
]
}