28 lines
658 B
JSON
28 lines
658 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"moduleDetection": "force",
|
|
"useDefineForClassFields": true,
|
|
"outDir": "lib",
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"typeRoots": ["node_modules/@types"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["./src", "./types", "./config"],
|
|
"compileOnSave": false
|
|
}
|