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

23 lines
583 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-05-24 00:54:20 +00:00
"typeRoots": ["build/dependencies/types"],
2020-04-29 18:56:51 +00:00
"paths": {
2020-05-24 00:54:20 +00:00
"*": ["*", "../build/dependencies/lib/*"]
2020-04-29 18:56:51 +00:00
},
2020-05-24 00:54:20 +00:00
"baseUrl": "src",
"outDir": "build/ts",
2020-05-05 00:36:32 +00:00
"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
]
}