From 03623a7e835dde461c44acc77fe670574dfe2c4b Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 11 Mar 2022 14:36:42 +0300 Subject: feat: add initial Cell class --- tsconfig.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') 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/**/*"] +} -- cgit v1.2.3