Skip to content

Commit

Permalink
chore(common): update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Amiditin committed Jan 13, 2025
1 parent be5571d commit 6113202
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
1 change: 1 addition & 0 deletions project.types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/// <reference types="@atls/code-runtime/types" />
25 changes: 11 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,29 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],

"declaration": false,

"emitDecoratorMetadata": true,
"experimentalDecorators": true,

"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": false,
"isolatedModules": false,
"moduleResolution": "NodeNext",
"noFallthroughCasesInSwitch": true,

"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,

"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,

"pretty": true,
"removeComments": true,
"resolveJsonModule": true,

"strict": true,
"strictPropertyInitialization": false,
"sourceMap": false,

"module": "NodeNext",
"target": "es2022",

"jsx": "react",

"outDir": "./dist"
},
"exclude": [
Expand All @@ -47,7 +37,14 @@
"integration/**/*.test.ts",
"theme/theme-cli/theme"
],
"include": ["assets/**/*", "fragments/**/*", "loaders/**/*", "theme/**/*", "utils/**/*"],
"include": [
"project.types.d.ts",
"assets/**/*",
"fragments/**/*",
"loaders/**/*",
"theme/**/*",
"utils/**/*"
],
"ts-node": {
"esm": true
}
Expand Down

0 comments on commit 6113202

Please sign in to comment.