24 lines
666 B
JSON
24 lines
666 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
// "removeComments": true,
|
|
"outDir": "./build",
|
|
"paths": {
|
|
"@interface/*": ["./src/Interfaces/*"]
|
|
},
|
|
"typeRoots": ["./src/types/common", "./node_modules/@types"]
|
|
},
|
|
"exclude": ["./node_modules", "./test"],
|
|
"include": ["./src"]
|
|
}
|