mirror of https://github.com/lukechilds/polar.git
21 lines
531 B
21 lines
531 B
{
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": "src"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/utils/tests/resources"]
|
|
}
|
|
|