vue/types/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
361 B
JSON
Raw Normal View History

{
"compilerOptions": {
2022-05-30 13:36:07 +00:00
"target": "esnext",
"experimentalDecorators": true,
2022-05-30 13:36:07 +00:00
"lib": ["dom", "esnext"],
"types": ["node"],
2022-05-30 13:36:07 +00:00
"module": "esnext",
2022-06-09 06:39:18 +00:00
"moduleResolution": "node",
"jsx": "preserve",
"strict": true,
"noEmit": true,
"paths": {
"vue": ["../index.d.ts"]
}
},
2022-06-01 13:55:33 +00:00
"include": ["."],
"compileOnSave": false
}