35 lines
862 B
JSON
35 lines
862 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "ES2020",
|
|
"lib": ["ES2019", "DOM", "DOM.Iterable"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"outDir": "./public/js",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitOverride": true,
|
|
"useDefineForClassFields": false,
|
|
"plugins": [
|
|
{
|
|
"name": "ts-lit-plugin",
|
|
"strict": true
|
|
}
|
|
]
|
|
},
|
|
"compileOnSave": true
|
|
}
|