2020-10-08 09:21:27 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "react",
|
|
|
|
"target": "es2019",
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strict": true,
|
2020-11-12 17:31:54 -08:00
|
|
|
"strictNullChecks": true,
|
2020-10-08 09:21:27 -07:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": false,
|
|
|
|
"outDir": "./dist",
|
2020-12-10 13:45:56 -08:00
|
|
|
"moduleResolution": "node"
|
2020-10-08 09:21:27 -07:00
|
|
|
},
|
|
|
|
"include": [
|
2020-10-20 11:48:22 -07:00
|
|
|
"."
|
2020-10-08 09:21:27 -07:00
|
|
|
],
|
|
|
|
"exclude": [
|
2020-11-12 17:31:54 -08:00
|
|
|
".git",
|
|
|
|
"**/node_modules/*",
|
|
|
|
"dist",
|
|
|
|
"pack"
|
|
|
|
]
|
2020-10-20 11:22:57 -07:00
|
|
|
}
|