2022-12-20 00:59:14 +01:00
|
|
|
{
|
2023-07-02 04:10:05 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2021",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["dom", "es2021"],
|
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
|
|
|
"/@/*": ["*"]
|
|
|
|
},
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"strict": true,
|
|
|
|
"pretty": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"outDir": "release/app/dist"
|
2022-12-20 00:59:14 +01:00
|
|
|
},
|
2023-07-02 04:10:05 +02:00
|
|
|
"exclude": ["test", "release/build", "release/app/dist", ".erb/dll", "server"]
|
2022-12-20 00:59:14 +01:00
|
|
|
}
|