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/ts/tsconfig.json

23 lines
570 B
JSON
Raw Normal View History

2020-04-25 13:33:17 +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-30 00:32:07 +00:00
"typeRoots": ["types"],
2020-04-28 02:30:12 +00:00
"rootDir": "src",
"baseUrl": "src",
2020-04-29 01:13:08 +00:00
"outDir": "lib/ts",
"declaration": true,
2020-05-05 00:36:32 +00:00
"declarationDir": "lib/dts",
"moduleResolution": "node",
"resolveJsonModule": true
2020-04-25 13:33:17 +00:00
},
"include": [
2020-04-30 00:32:07 +00:00
"src/**/*"
2020-04-25 13:33:17 +00:00
]
}