29 lines
715 B
JSON
29 lines
715 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ES2020",
|
||
|
|
"lib": ["ES2020"],
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"rootDir": "./",
|
||
|
|
"outDir": "./dist",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"checkJs": false
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "config/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist", "scripts"]
|
||
|
|
}
|
||
|
|
|