Files
docx-js/tsconfig.json

40 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2016-03-26 23:57:37 +00:00
{
"compilerOptions": {
2023-12-25 01:50:26 +00:00
"target": "ES2015",
2023-05-01 20:37:39 +01:00
"useDefineForClassFields": true,
"module": "ESNext",
2023-12-25 01:50:26 +00:00
"lib": ["ES2015", "DOM", "DOM.Iterable"],
2023-05-01 20:37:39 +01:00
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
2016-03-26 23:57:37 +00:00
"sourceMap": true,
"removeComments": true,
"preserveConstEnums": true,
"outDir": "./build",
"rootDir": "./src",
2017-12-06 01:03:14 +00:00
"declaration": true,
2023-05-01 20:37:39 +01:00
"esModuleInterop": true,
"baseUrl": "./src",
2021-03-09 02:23:22 +00:00
"paths": {
"@util/*": ["./util/*"],
2021-09-28 19:56:29 +01:00
"@export/*": ["./export/*"],
2022-10-29 03:10:29 +01:00
"@file/*": ["./file/*"],
"@shared": ["./shared/index.ts"]
2017-12-19 21:42:17 +00:00
}
2016-03-27 03:09:50 +01:00
},
2021-03-31 21:27:40 +01:00
"include": ["src"]
}