quartz-research-note/tsconfig.json

21 lines
560 B
JSON
Raw 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",
2024-02-05 10:45:36 +00:00
"jsxImportSource": "preact",
2023-05-29 00:44:08 +00:00
},
2023-07-23 00:27:41 +00:00
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
2024-02-05 10:45:36 +00:00
"exclude": ["build/**/*.d.ts"],
2023-05-29 00:44:08 +00:00
}