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 09:33:17 -04:00
{
"compilerOptions": {
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"lib": ["es2020"],
"module": "es2020",
"target": "es2020",
2020-05-04 20:36:32 -04:00
"removeComments": true,
2020-04-27 22:30:12 -04:00
"rootDir": "src",
"baseUrl": "src",
2020-05-23 20:54:20 -04:00
"outDir": "build/ts",
2020-05-25 17:21:56 -04:00
"typeRoots": ["types", "build/dependencies/types"],
"paths": {
"*": ["*", "../build/dependencies/src/*"]
},
2020-04-28 21:13:08 -04:00
"declaration": true,
2020-05-23 20:54:20 -04:00
"declarationDir": "build/dts",
2020-05-04 20:36:32 -04:00
"moduleResolution": "node",
2020-06-02 16:49:57 -04:00
"resolveJsonModule": true,
"stripInternal": true
2020-04-25 09:33:17 -04:00
},
"include": [
2020-04-29 20:32:07 -04:00
"src/**/*"
2020-04-25 09:33:17 -04:00
]
}