45 lines
948 B
JSON
45 lines
948 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "nodenext",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"outDir": "./dist",
|
|
"moduleResolution": "nodenext",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"removeComments": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./lib/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"transform": "typescript-transform-paths"
|
|
},
|
|
{
|
|
"transform": "typescript-transform-paths",
|
|
"afterDeclarations": true
|
|
}
|
|
],
|
|
"typeRoots": [
|
|
"lib/shared/types",
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"lib/**/*",
|
|
"sandbox/**/*",
|
|
],
|
|
}
|