30 lines
743 B
JSON
30 lines
743 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@config": ["config/index.ts"],
|
|
"@lib/*": ["src/lib/*"]
|
|
},
|
|
"typeRoots": ["types", "./node_modules/@types"],
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"allowJs": false,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": false,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false
|
|
},
|
|
"include": ["src", "types", "config"]
|
|
}
|