Vue example

This commit is contained in:
2020-05-06 09:10:49 +02:00
parent a77473fad4
commit 43af48334c
15 changed files with 9100 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
{
"compilerOptions": {
"outDir": "./dist/",
"declaration": true,
"noImplicitAny": false,
"lib": [ "DOM", "ESNext" ],
"module": "ESNext",
"target": "ESNext",
"allowJs": true,
"sourceMap": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"rootDir": "./src",
},
"include": ["src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
}
//{
// "compilerOptions": {
// "strict": true,
// "jsx": "preserve",
// "importHelpers": true,
// "esModuleInterop": true,
// "allowSyntheticDefaultImports": true,
// "baseUrl": ".",
// "types": [
// "webpack-env"
// ],
// "paths": {
// "@/*": [
// "src/*"
// ]
// },
// "lib": [
// "esnext",
// "dom",
// "dom.iterable",
// "scripthost"
// ]
// },
// "include": [
// "src/**/*.ts",
// "src/**/*.tsx",
// "tests/**/*.ts",
// "tests/**/*.tsx"
// ],
// "exclude": [
// "node_modules"
// ]
// }