roadmap/tsconfig.json

31 lines
606 B
JSON
Raw Normal View History

2023-05-29 00:44:08 +00:00
{
"compilerOptions": {
"lib": [
2023-06-20 03:37:45 +00:00
"esnext",
"DOM",
"DOM.Iterable"
2023-05-29 00:44:08 +00:00
],
"experimentalDecorators": true,
2023-05-29 00:44:08 +00:00
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"strict": true,
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"include": [
"**/*.ts",
"**/*.tsx",
"./package.json"
],
"exclude": [
"build/**/*.d.ts"
]
}