testing-playground/tsconfig.json

31 lines
809 B
JSON
Raw Permalink Normal View History

2024-03-07 00:27:52 -08:00
{
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "ES2021",
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"noImplicitAny": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"composite": false,
"typeRoots": ["node_modules/@types", "src/common/types"],
"strict": true,
"strictPropertyInitialization": false,
"allowJs": true,
"paths": {
"@app/*": ["./src/*"],
"@players/*": ["./src/players/*"],
"@users/*": ["./src/users/*"],
}
}
}