forked from getcord/cord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (39 loc) · 1.12 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"compilerOptions": {
// Enable absolute imports
"baseUrl": ".",
// https://www.sitepoint.com/javascript-decorators-what-they-are/
// NOTE(flooey): TypeScript 5.0 introduced the final version of decorators,
// which work differently than experimentalDecorators. We need the latter
// still because sequelize hasn't been changed to use the new decorators.
"experimentalDecorators": true,
"esModuleInterop": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"incremental": true,
"jsx": "react-jsx",
// The most restrictive. See:
// https://www.typescriptlang.org/docs/handbook/modules/guides/choosing-compiler-options.html#im-writing-a-library
"module": "node16",
"noImplicitAny": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "es2021",
"importsNotUsedAsValues": "preserve",
"ignoreDeprecations": "5.0"
},
"exclude": [
"build/",
"config/",
"cypress/",
"dist/",
"localhost/",
"node_modules/",
"opensource/",
"ops/",
"patches/",
"tmp/"
]
}