games/tsconfig.json
Florian Bouillon 26df50c4a8
feat: Upgraded Engine
Signed-off-by: Avior <f.bouillon@aptatio.com>
2023-01-18 16:05:07 +01:00

46 lines
832 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": "./src",
"paths": {
"@styl/*": [
"client/styl/*"
],
"@cp/*": [
"client/components/*"
],
"@smd/*": [
"client/styl/modules/*"
]
},
"incremental": true
},
"exclude": [
"node_modules",
"out",
"__tests__"
],
"include": [
"next-env.d.ts",
"src/client/styl/stylus.d.ts",
"**/*.ts",
"**/*.tsx"
]
}