config-router/tsconfig.json

22 lines
560 B
JSON
Raw Permalink Normal View History

2021-10-22 15:00:20 +08:00
{
"compilerOptions": {
2021-10-22 18:09:06 +08:00
"target": "es5",
2021-10-22 15:35:01 +08:00
// "useDefineForClassFields": true,
// "lib": ["DOM", "DOM.Iterable", "ESNext"],
// "allowJs": false,
// "skipLibCheck": false,
// "esModuleInterop": false,
// "allowSyntheticDefaultImports": true,
2021-10-22 15:00:20 +08:00
"strict": true,
2021-10-22 15:35:01 +08:00
// "forceConsistentCasingInFileNames": true,
2021-10-22 15:00:20 +08:00
"module": "ESNext",
"moduleResolution": "Node",
2021-10-22 15:35:01 +08:00
// "resolveJsonModule": true,
// "isolatedModules": true,
// "noEmit": true,
"jsx": "react-jsx",
"outDir": "dist"
2021-10-22 15:00:20 +08:00
},
2021-10-22 15:35:01 +08:00
"include": ["src/**/*"]
2021-10-22 15:00:20 +08:00
}