partey_workadventure/desktop/electron/tsconfig.json

21 lines
506 B
JSON
Raw Normal View History

2022-02-17 18:09:57 +01:00
{
"compilerOptions": {
"experimentalDecorators": true,
2022-02-22 12:02:56 +01:00
"target": "es5",
2022-02-17 18:09:57 +01:00
"downlevelIteration": true,
2022-02-22 12:02:56 +01:00
"module": "commonjs",
"allowJs": true,
"sourceMap": true,
"outDir": "./dist",
"strict": true,
"noImplicitThis": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
//"baseUrl": ".",
//"paths": {},
2022-02-22 12:02:56 +01:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2022-02-18 10:26:36 +01:00
"skipLibCheck": true
2022-02-17 18:09:57 +01:00
}
}