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

27 lines
717 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-28 02:30:12 +00:00
"rootDir": "src",
"baseUrl": "src",
2020-05-24 00:54:20 +00:00
"outDir": "build/ts",
2020-05-25 21:21:56 +00:00
"typeRoots": ["types", "build/dependencies/types"],
"paths": {
"*": ["*", "../build/dependencies/src/*"]
},
2020-04-29 01:13:08 +00:00
"declaration": true,
2020-05-24 00:54:20 +00:00
"declarationDir": "build/dts",
2020-05-05 00:36:32 +00:00
"moduleResolution": "node",
2020-06-02 20:49:57 +00:00
"resolveJsonModule": true,
"stripInternal": 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
]
}