31 lines
746 B
JSON
31 lines
746 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"script/*": ["src/script/*"],
|
|
"components/*": ["src/components/*"],
|
|
"stores/*": ["src/stores/*"]
|
|
},
|
|
"types": [
|
|
"vite-plugin-glsl/ext",
|
|
"node"
|
|
]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"references": [{
|
|
"path": "./tsconfig.node.json"
|
|
}]
|
|
} |