26 lines
469 B
JSON
Raw Normal View History

2022-01-25 18:10:40 +00:00
{
2022-01-30 02:37:14 -08:00
"include": [
"src/**/*"
2022-10-31 15:28:39 -07:00
],
2022-01-25 18:10:40 +00:00
"compilerOptions": {
2022-01-30 02:37:14 -08:00
"jsx": "react",
2022-01-25 18:10:40 +00:00
"outDir": "./dist/",
"sourceMap": true,
2022-01-30 02:37:14 -08:00
"noImplicitAny": false,
"module": "amd",
"moduleResolution": "node",
"strict": false,
"target": "es6",
"allowJs": true,
2022-01-25 18:10:40 +00:00
"esModuleInterop": true,
2022-01-30 02:37:14 -08:00
"declaration": true,
2022-11-24 00:07:16 -08:00
"strictNullChecks": false,
2022-01-30 02:37:14 -08:00
"rootDirs": [
"src",
2022-02-04 19:26:54 +00:00
],
"resolveJsonModule": true
2022-01-25 18:10:40 +00:00
},
2022-01-30 02:37:14 -08:00
"exclude": [
"node_modules"
]
}