Files
polar/tsconfig.json
Shawn Erquhart 2eaff5e77f wip
2024-10-31 17:35:23 -04:00

24 lines
519 B
JSON

{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"strict": true,
"jsx": "react-jsx",
"target": "ESNext",
"lib": ["ES2021", "dom", "DOM.Iterable"],
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"skipLibCheck": true
},
"include": ["./src/**/*"]
}