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

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