roadmap/tsconfig.json

21 lines
558 B
JSON
Raw Permalink Normal View History

2023-05-29 00:44:08 +00:00
{
"compilerOptions": {
2023-07-23 00:27:41 +00:00
"lib": ["esnext", "DOM", "DOM.Iterable"],
"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"
},
2023-07-23 00:27:41 +00:00
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
"exclude": ["build/**/*.d.ts"]
2023-05-29 00:44:08 +00:00
}