-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.22 KB
/
Copy pathtsconfig.json
File metadata and controls
46 lines (46 loc) · 1.22 KB
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
42
43
44
45
46
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "nodenext",
"noEmit": true,
"noImplicitAny": true,
"noImplicitThis": true,
"outDir": "./distribution",
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictBuiltinIteratorReturn": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ESNext",
"useDefineForClassFields": true,
"useUnknownInCatchVariables": true
},
"exclude": [".vscode", "distribution", "public"],
"files": [
"./app.mts",
"./index.mts",
"./library/constants.mts",
"./library/graycraft.mts",
"./routes/index.mts",
"./source/graycraft.umd.js",
"./typings/window.d.ts"
],
"include": ["**/*"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true
}
}