34 lines
808 B
JSON
34 lines
808 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2021",
|
||
|
"module": "es2020",
|
||
|
"lib": ["es2021", "DOM", "DOM.Iterable"],
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"sourceMap": true,
|
||
|
"inlineSources": true,
|
||
|
"outDir": "./",
|
||
|
"rootDir": "./src",
|
||
|
"strict": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitThis": true,
|
||
|
"moduleResolution": "node",
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noImplicitOverride": true,
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "ts-lit-plugin",
|
||
|
"strict": true
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"include": ["src/**/*.ts"],
|
||
|
"exclude": []
|
||
|
}
|