mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
03219166c5
+ more redesign + convert js files to ts
41 lines
813 B
JSON
41 lines
813 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
// "strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"baseUrl": ["./"],
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"src/**/*.svg"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|
|
|
|
// {
|
|
// "compilerOptions": {
|
|
// "strict": false,
|
|
// "jsx": "preserve",
|
|
// "paths": {
|
|
// "baseUrl": ["./"],
|
|
// "@/*": ["./src/*"]
|
|
// }
|
|
// },
|
|
// "include": ["src/**/*"]
|
|
// }
|