Vue example
This commit is contained in:
52
examples/vue/tsconfig.json
Normal file
52
examples/vue/tsconfig.json
Normal 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"
|
||||
// ]
|
||||
// }
|
||||
|
||||
Reference in New Issue
Block a user