20 lines
443 B
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"
|
||
|
]
|
||
|
}
|