video-flow-toon/tsconfig.json
zyc e8f381f73a
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 5s
Add SMS verification auth flow
2026-05-28 16:08:30 +08:00

35 lines
654 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",
"web-core",
"data/**/*.ts",
"dist",
"build"
]
}