mirror of
https://github.com/HBAI-Ltd/Toonflow-app.git
synced 2026-05-23 10:23:02 +08:00
33 lines
637 B
JSON
33 lines
637 B
JSON
{
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "5.0",
|
|
"target": "ESNext",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": false,
|
|
"outDir": "build",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"incremental": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types"
|
|
],
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"data/**/*.ts",
|
|
"dist",
|
|
"build"
|
|
]
|
|
} |