2021-06-29 22:51:49 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015"
|
|
|
|
],
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "es5",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "dist",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"sourceMap": true,
|
2021-06-29 23:02:35 +08:00
|
|
|
"isolatedModules": false
|
2021-06-29 22:51:49 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
|
|
|
}
|