You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
889 B
33 lines
889 B
{ |
|
"compilerOptions": { |
|
"baseUrl": "./dist/src", |
|
"rootDir": "src", |
|
"outDir": "dist", |
|
"paths": { |
|
"@config/*": ["./*"], |
|
"*": [ |
|
"node_modules/*", |
|
] |
|
}, |
|
"lib": ["ESNext"], |
|
"target": "ES2020", |
|
"module": "NodeNext", |
|
"moduleResolution": "NodeNext", |
|
"esModuleInterop": true, |
|
"types": ["node", "vite/client"], |
|
"allowSyntheticDefaultImports": true, |
|
"composite": true, |
|
"incremental": true, |
|
"sourceMap": true, |
|
"experimentalDecorators": false, |
|
"downlevelIteration": true, |
|
"forceConsistentCasingInFileNames": true, |
|
"removeComments": true, |
|
"plugins": [ { "transform": "typescript-transform-paths" } ], |
|
"allowSyntheticDefaultImports": true, |
|
"declaration": true, |
|
"importHelpers": false, |
|
"skipLibCheck": true, |
|
}, |
|
"include": ["src/server/*", "src/*.ts", "src/modules/*"] |
|
} |