diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-03-11 14:36:42 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-03-11 14:36:42 +0300 |
commit | 03623a7e835dde461c44acc77fe670574dfe2c4b (patch) | |
tree | 7293a38c8471a50c121c8a8399b8ccb89045995e /tsconfig.json | |
download | carcassonne-engine-ts-03623a7e835dde461c44acc77fe670574dfe2c4b.tar.gz |
feat: add initial Cell class
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..274df67 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "outDir": "./build", + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020", "dom"], + "moduleResolution": "node", + "resolveJsonModule": true, + "allowSyntheticDefaultImports": true, + "allowJs": false, + "alwaysStrict": true, + "sourceMap": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "noImplicitReturns": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitAny": false, + "noImplicitThis": false, + "strictNullChecks": false, + "experimentalDecorators": true, + "importHelpers": true, + "declaration": true, + "watch": false, + "emitDecoratorMetadata": true, + "esModuleInterop": true, + "removeComments": false + }, + "include": ["src/**/*", "test/**/*"] +} |