31 lines
678 B
JSON
31 lines
678 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"types": [ "node" ],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": false,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": [
|
|
"src",
|
|
"app",
|
|
"index",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|