forked from jsnbuchanan/crowd-funder-for-time-pwa
28 lines
626 B
JSON
28 lines
626 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2020",
|
|
"outDir": "dist-electron",
|
|
"rootDir": "src",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"types": ["vite/client"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"typeRoots": ["./node_modules/@types", "./src/types"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue"
|
|
]
|
|
} |