forked from opentiny/tiny-vue
19 lines
412 B
JSON
19 lines
412 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"lib": ["ESNext"],
|
|
"sourceMap": false,
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": ["src/**/*", "*.d.ts"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|