18 lines
467 B
JSON
18 lines
467 B
JSON
{
|
|
"compileOnSave": true,
|
|
"include": ["./src/**/*", "./capacitor.config.ts", "./capacitor.config.js"],
|
|
"exclude": ["./src/**/*.test.ts", "./src/**/*.spec.ts"],
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"importHelpers": true,
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"allowJs": true,
|
|
"rootDir": ".",
|
|
"skipLibCheck": true
|
|
}
|
|
}
|