quartz-research-note/tsconfig.json

21 lines
560 B
JSON
Raw Normal View History

2023-05-28 17:44:08 -07:00
{
"compilerOptions": {
2023-07-22 17:27:41 -07:00
"lib": ["esnext", "DOM", "DOM.Iterable"],
"experimentalDecorators": true,
2023-05-28 17:44:08 -07: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 19:45:36 +09:00
"jsxImportSource": "preact",
2023-05-28 17:44:08 -07:00
},
2023-07-22 17:27:41 -07:00
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
2024-02-05 19:45:36 +09:00
"exclude": ["build/**/*.d.ts"],
2023-05-28 17:44:08 -07:00
}