mirror of
https://github.com/LukeHagar/polar.git
synced 2025-12-06 04:20:58 +00:00
24 lines
519 B
JSON
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/**/*"]
|
|
}
|