Files
afilmory/apps/web/tsconfig.json
2025-10-31 02:07:13 +08:00

29 lines
753 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"skipDefaultLibCheck": true,
"noImplicitAny": false,
"noEmit": true,
"jsx": "preserve",
"paths": {
"~/*": ["./src/*"],
"@pkg": ["./package.json"],
"@config": ["../../site.config.ts"],
"@env": ["../../env.ts"],
"@locales/*": ["../../locales/*"]
}
},
"include": ["./src/**/*", "./scripts/**/*"]
}