Slash-The-Hordes/tsconfig.json

18 lines
482 B
JSON
Raw Normal View History

2022-11-03 15:55:49 +00:00
{
/* Base configuration. Do not edit this field. */
"extends": "./temp/tsconfig.cocos.json",
/* Add your custom configuration here. */
"compilerOptions": {
"target": "ES2015",
"module": "CommonJS",
"allowSyntheticDefaultImports": true,
"types": ["jest", "node"],
2022-11-28 11:33:49 +00:00
"strictNullChecks": false,
"moduleResolution": "node",
"paths": {
// "@services/*": ["./assets/Scripts/Services/*"]
}
2022-11-03 15:55:49 +00:00
}
}