tianji/tsconfig.json

20 lines
492 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-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
}