mirror of
https://github.com/mwisnowski/mtg_python_deckbuilder.git
synced 2026-03-18 19:26:31 +01:00
chore: track package.json, package-lock.json, tsconfig.json for Docker build
This commit is contained in:
parent
0ccb05f792
commit
a0b7eec0b1
4 changed files with 1760 additions and 0 deletions
47
tsconfig.json
Normal file
47
tsconfig.json
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
/* Language and Environment */
|
||||
"target": "ES2020",
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
|
||||
/* Modules */
|
||||
"module": "ES2015",
|
||||
"moduleResolution": "node",
|
||||
|
||||
/* Emit */
|
||||
"outDir": "./code/web/static/js",
|
||||
"rootDir": "./code/web/static/ts",
|
||||
"removeComments": true,
|
||||
"sourceMap": true,
|
||||
|
||||
/* Interop Constraints */
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
||||
/* Type Checking */
|
||||
"strict": false,
|
||||
"noImplicitAny": false,
|
||||
"strictNullChecks": false,
|
||||
"strictFunctionTypes": false,
|
||||
"strictBindCallApply": false,
|
||||
"strictPropertyInitialization": false,
|
||||
"noImplicitThis": false,
|
||||
"alwaysStrict": true,
|
||||
|
||||
/* Completeness */
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Additional Options */
|
||||
"allowJs": true,
|
||||
"checkJs": false,
|
||||
"noEmit": false
|
||||
},
|
||||
"include": [
|
||||
"code/web/static/ts/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"code/web/static/vendor"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue