dolphins7.skeleton/client/tsconfig.json
2024-04-25 13:49:49 -03:00

19 lines
395 B
JSON

{
"compilerOptions": {
"strict": true,
"strictNullChecks": false,
"module": "ES6",
"target": "ES5",
"jsx": "react",
"lib": ["DOM"],
"baseUrl": "./src",
"allowSyntheticDefaultImports": true,
"allowUmdGlobalAccess": true,
"moduleResolution": "node",
"removeComments": true,
"incremental": true,
"paths": {
"~/*": ["./js/*"]
},
}
}