29 lines
761 B
JSON
29 lines
761 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"skipLibCheck": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"preserveValueImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": "./hwe/",
|
|
"paths": {
|
|
"@/*": ["./ts/*"],
|
|
"@scss/*": ["./scss/*"],
|
|
"@util/*": ["./ts/util/*"],
|
|
},
|
|
},
|
|
"include": ["hwe/ts/**/*.ts", "hwe/ts/**/*.d.ts", "hwe/ts/**/*.tsx", "hwe/ts/**/*.vue"],
|
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|