ft_transcendence/pong/node_modules/tsconfig-paths-webpack-plugin/tsconfig.json
2023-05-02 19:15:50 +02:00

24 lines
570 B
JSON

{
"include": ["src/**/*"],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./lib",
"module": "commonjs",
"target": "es5",
// "esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"lib": ["es2015"],
"forceConsistentCasingInFileNames": true,
"newLine": "LF",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
// "noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true
}
}