This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
ScriptCraft/src/main/resources/scriptcraft/tsconfig.json

20 lines
443 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"lib": ["es2020"],
"module": "es2020",
"target": "es2020",
"typeRoots": ["types"],
"rootDir": ".",
"baseUrl": ".",
"paths": {
"minecraft": ["minecraft/index"]
}
},
"include": [
"**/*.ts"
]
}