1234567891011121314151617181920212223242526 |
- {
- "extends": "@vue/tsconfig/tsconfig.json",
- "include": ["./apps/**/*.ts", "./core/**/*.ts", "./*.d.ts"],
- "compilerOptions": {
- "types": ["cypress", "jest", "node", "vue"],
- "outDir": "./dist/",
- "target": "ESNext",
- "module": "esnext",
- "moduleResolution": "node",
- // Allow ts to import js files
- "allowJs": true,
- "allowSyntheticDefaultImports": true,
- "declaration": false,
- "noImplicitAny": false,
- "resolveJsonModule": true,
- "strict": true,
- },
- "ts-node": {
- // these options are overrides used only by ts-node
- // same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
- "compilerOptions": {
- "module": "commonjs",
- "verbatimModuleSyntax": false
- }
- }
- }
|