
* chore: Bump various packages * feat: Update everything to ESM * fix: building and porting js to cjs
30 lines
1,016 B
JSON
30 lines
1,016 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "build",
|
|
"inlineSources": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
// Needed to address https://github.com/quasarframework/app-extension-typescript/issues/36
|
|
"noEmit": false,
|
|
"resolveJsonModule": true,
|
|
// Avoid cross-os errors due to inconsistent file casing
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"isolatedModules": true,
|
|
"useDefineForClassFields": true,
|
|
// Fix Volar issue https://github.com/johnsoncodehk/volar/issues/1153
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom"],
|
|
"experimentalDecorators": true,
|
|
"baseUrl": "./",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitThis": true,
|
|
"skipLibCheck": true /* Skip type checking of declaration files. */,
|
|
"typeRoots": ["node_modules/musickit-typescript", "node_modules/@types"],
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
}
|