diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..335a624 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "module": "esnext", + "target": "esnext", + "lib": ["es2017", "esnext", "dom", "dom.iterable"], + "declaration": true, + "emitDeclarationOnly": true, + "outDir": "./types", + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "moduleResolution": "node", + "allowSyntheticDefaultImports": true, + "experimentalDecorators": true, + "forceConsistentCasingInFileNames": true, + "useDefineForClassFields": false, + "isolatedModules": true, + "types": [ + "vite-plugin-pwa/client", + "vite/client" + ] + }, + "include": ["src/**/*.ts"], + "exclude": ["node_modules"] +} |