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.
25 lines
443 B
25 lines
443 B
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"es2015"
|
|
],
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noEmit": true
|
|
},
|
|
"files": [
|
|
"../index.d.ts",
|
|
"../options.d.ts",
|
|
"../plugin.d.ts",
|
|
"../vnode.d.ts",
|
|
"../vue.d.ts",
|
|
"options-test.ts",
|
|
"plugin-test.ts",
|
|
"vue-test.ts",
|
|
"augmentation-test.ts"
|
|
],
|
|
"compileOnSave": false
|
|
}
|
|
|