tianji/tsconfig.base.json

21 lines
515 B
JSON
Raw Normal View History

2023-08-31 13:17:57 +00:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
2023-09-04 17:18:43 +00:00
"noEmit": true,
2023-10-14 16:02:23 +00:00
"jsx": "react-jsx"
2023-08-31 13:17:57 +00:00
},
2023-09-04 17:18:43 +00:00
"include": ["src", "types"]
2023-08-31 13:17:57 +00:00
}