36 lines
743 B
JSON
36 lines
743 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES6",
|
|
"module": "ESNext",
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment",
|
|
"moduleResolution": "Node16",
|
|
"sourceMap": true,
|
|
"lib": [
|
|
"DOM",
|
|
"es6"
|
|
],
|
|
"outDir": "lib",
|
|
"preserveSymlinks": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"incremental": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"rootDir": "./src",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|