A small tool to search for StarWars characters, because: Why not?
https://swc.k0r.in
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
681 B
39 lines
681 B
{ |
|
"compilerOptions": { |
|
"target": "esnext", |
|
"useDefineForClassFields": true, |
|
"module": "esnext", |
|
"moduleResolution": "node", |
|
"strict": true, |
|
"jsx": "preserve", |
|
"sourceMap": true, |
|
"resolveJsonModule": true, |
|
"esModuleInterop": true, |
|
"lib": [ |
|
"esnext", |
|
"dom" |
|
], |
|
"paths": { |
|
"@/*": [ |
|
"./src/*" |
|
], |
|
"!component/*": [ |
|
"./src/components/*" |
|
], |
|
"!composable/*": [ |
|
"./src/composables/*" |
|
] |
|
} |
|
}, |
|
"include": [ |
|
"src/**/*.ts", |
|
"src/**/*.d.ts", |
|
"src/**/*.tsx", |
|
"src/**/*.vue" |
|
], |
|
"references": [ |
|
{ |
|
"path": "./tsconfig.node.json" |
|
} |
|
] |
|
}
|
|
|