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