2022-05-05 20:19:03 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "dist",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strict": true,
|
2022-05-05 21:15:35 +02:00
|
|
|
"target": "es2015",
|
2022-05-12 08:06:18 +02:00
|
|
|
"jsx": "react",
|
|
|
|
"jsxFactory": "jsx.createElement",
|
2022-05-14 21:37:14 +02:00
|
|
|
"jsxFragmentFactory": "jsx.createFragment",
|
2022-05-05 20:19:03 +02:00
|
|
|
"typeRoots": ["./src/web/types"],
|
2022-05-08 15:06:08 +02:00
|
|
|
"types": ["node"],
|
2022-05-08 18:46:50 +02:00
|
|
|
"baseUrl": "./src/web",
|
|
|
|
"allowSyntheticDefaultImports": true
|
2022-05-05 20:19:03 +02:00
|
|
|
},
|
2022-05-08 15:06:08 +02:00
|
|
|
"include": ["./src/web"],
|
2022-05-05 20:19:03 +02:00
|
|
|
"exclude": ["node_modules", "dist", "build"]
|
|
|
|
}
|