yunshangxie-admin/tsconfig.json

27 lines
598 B
JSON
Raw Permalink Normal View History

2024-04-18 13:44:38 +08:00
{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"lib": ["esnext", "dom"],
"allowJs": true,
"checkJs": false,
"noImplicitAny": false,
"isolatedModules": false,
"experimentalDecorators": true,
"esModuleInterop": true,
"noImplicitThis": false,
"strictNullChecks": false,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"jsx": "preserve",
"noEmit": true,
"baseUrl": "./",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"compileOnSave": false
}