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/examples/typescript/src/main/ts/tsconfig.json

24 lines
649 B
JSON
Raw Normal View History

2020-04-29 18:56:51 +00:00
{
"compilerOptions": {
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"lib": ["es2020"],
"module": "es2020",
"target": "es2020",
2020-05-05 00:36:32 +00:00
"removeComments": true,
2020-04-29 18:56:51 +00:00
"typeRoots": ["node_modules/scriptcraft-api/types"],
"rootDir": "src",
"baseUrl": "src",
"paths": {
"minecraft": ["../node_modules/scriptcraft-api/lib/minecraft/index.d.ts"]
},
2020-05-05 00:36:32 +00:00
"outDir": "lib/ts",
"moduleResolution": "node",
"resolveJsonModule": true
2020-04-29 18:56:51 +00:00
},
"include": [
2020-04-30 00:32:07 +00:00
"src/**/*"
2020-04-29 18:56:51 +00:00
]
}