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.

27 lines
1.6 KiB

1 year ago
{
6 months ago
"include": ["src/platform/index.ts"],
"exclude": ["node_modules"],
1 year ago
"allowJs": true,
"compilerOptions": {
6 months ago
"declaration": true /* tsc .d.ts , ts .d.ts */,
"declarationDir": "dist/types" /* .d.ts */,
"declarationMap": true /* .d.ts.map , 便 IDE */,
"target": "ES6" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"module": "node16" /* Specify what module code is generated. */,
"strict": true /* Enable all strict type-checking options. */,
"jsx": "preserve" /* Specify what JSX code is generated. */,
"jsxImportSource": "vue",
5 months ago
"isolatedModules": true,
6 months ago
"noEmit": true /* Disable emitting files from a compilation. */,
"allowImportingTsExtensions": true /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */,
"noImplicitAny": false /* Enable error reporting for expressions and declarations with an implied 'any' type. */,
"moduleResolution": "node16" /* Specify how TypeScript looks up a file from a given module specifier. */,
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
"baseUrl": "." /* Specify the base directory to resolve non-relative module names. */,
"paths": {
/* Specify a set of entries that re-map imports to additional lookup locations. */ "@/*": ["src/*"]
1 year ago
}
}
}