2021-08-17 14:09:53 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"outDir": "out",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@app": ["./src/app"]
|
|
|
|
|
},
|
|
|
|
|
"jsx": "react"
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*.ts"
|
2021-08-23 13:17:32 -04:00
|
|
|
, "src/app.tsx" ]
|
2021-08-17 14:09:53 -04:00
|
|
|
}
|