12345678910111213141516171819202122 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "target": "ES2020",
- "lib": [
- "ES2020"
- ],
- "baseUrl": "src",
- "outDir": "dist",
- "paths": {
- "@/*": ["./*"]
- },
- "sourceMap": true,
- "newLine": "lf",
- "strict": true,
- "noImplicitReturns": true,
- "noUnusedLocals": true,
- "noImplicitOverride": true,
- "exactOptionalPropertyTypes": true,
- },
- }
|