File tree Expand file tree Collapse file tree 7 files changed +98
-1
lines changed
e2e/ci-e2e/mocks/fixtures Expand file tree Collapse file tree 7 files changed +98
-1
lines changed Original file line number Diff line number Diff line change 1+ # Local development environment variables
2+ # Copy this to .env.local (gitignored) and customize for your setup
3+
4+ # Enable tsx for TypeScript execution in Nx
5+ # This allows running local generator/executor directly as .ts files without pre-compilation
6+ # This allows the local plugins to import files with .js extensions (same as the packages in the repository)
7+ NODE_OPTIONS = --import tsx
8+ # This is used to resolve the paths in the local generator/executor so local packages can be imported as path aliases
Original file line number Diff line number Diff line change 1+ {
2+ "compileOnSave" : false ,
3+ "compilerOptions" : {
4+ "rootDir" : " ." ,
5+ "sourceMap" : true ,
6+ "strict" : true ,
7+ "noUncheckedIndexedAccess" : true ,
8+ "declaration" : false ,
9+ "moduleResolution" : " node" ,
10+ "emitDecoratorMetadata" : true ,
11+ "experimentalDecorators" : true ,
12+ "importHelpers" : false ,
13+ "target" : " es2022" ,
14+ "module" : " esnext" ,
15+ "lib" : [" es2023" , " dom" ],
16+ "skipLibCheck" : true ,
17+ "skipDefaultLibCheck" : true ,
18+ "baseUrl" : " ." ,
19+ "resolveJsonModule" : true ,
20+ "allowSyntheticDefaultImports" : true ,
21+ "verbatimModuleSyntax" : true
22+ },
23+ "exclude" : [" node_modules" , " tmp" ]
24+ }
Original file line number Diff line number Diff line change 1+ # Local development environment variables
2+ # Copy this to .env.local (gitignored) and customize for your setup
3+
4+ # Enable tsx for TypeScript execution in Nx
5+ # This allows running local generator/executor directly as .ts files without pre-compilation
6+ # This allowes the local plugins to import files with .js extensions (same as the packages in the repository)
7+ NODE_OPTIONS = --import tsx
8+ # This is used to resolve the paths in the local generator/executor so local packages can be imported as path aliases
Original file line number Diff line number Diff line change 1+ {
2+ "compileOnSave" : false ,
3+ "compilerOptions" : {
4+ "rootDir" : " ." ,
5+ "sourceMap" : true ,
6+ "strict" : true ,
7+ "noUncheckedIndexedAccess" : true ,
8+ "declaration" : false ,
9+ "moduleResolution" : " node" ,
10+ "emitDecoratorMetadata" : true ,
11+ "experimentalDecorators" : true ,
12+ "importHelpers" : false ,
13+ "target" : " es2022" ,
14+ "module" : " esnext" ,
15+ "lib" : [" es2023" , " dom" ],
16+ "skipLibCheck" : true ,
17+ "skipDefaultLibCheck" : true ,
18+ "baseUrl" : " ." ,
19+ "resolveJsonModule" : true ,
20+ "allowSyntheticDefaultImports" : true ,
21+ "verbatimModuleSyntax" : true
22+ },
23+ "exclude" : [" node_modules" , " tmp" ]
24+ }
Original file line number Diff line number Diff line change 1+ # Local development environment variables
2+ # Copy this to .env.local (gitignored) and customize for your setup
3+
4+ # Enable tsx for TypeScript execution in Nx
5+ # This allows running local generator/executor directly as .ts files without pre-compilation
6+ # This allowes the local plugins to import files with .js extensions (same as the packages in the repository)
7+ NODE_OPTIONS = --import tsx
8+ # This is used to resolve the paths in the local generator/executor so local packages can be imported as path aliases
Original file line number Diff line number Diff line change 1+ {
2+ "compileOnSave" : false ,
3+ "compilerOptions" : {
4+ "rootDir" : " ." ,
5+ "sourceMap" : true ,
6+ "strict" : true ,
7+ "noUncheckedIndexedAccess" : true ,
8+ "declaration" : false ,
9+ "moduleResolution" : " node" ,
10+ "emitDecoratorMetadata" : true ,
11+ "experimentalDecorators" : true ,
12+ "importHelpers" : false ,
13+ "target" : " es2022" ,
14+ "module" : " esnext" ,
15+ "lib" : [" es2023" , " dom" ],
16+ "skipLibCheck" : true ,
17+ "skipDefaultLibCheck" : true ,
18+ "baseUrl" : " ." ,
19+ "resolveJsonModule" : true ,
20+ "allowSyntheticDefaultImports" : true ,
21+ "verbatimModuleSyntax" : true
22+ },
23+ "exclude" : [" node_modules" , " tmp" ]
24+ }
Original file line number Diff line number Diff line change 1515 "scripts" : {
1616 "prepare" : " husky install" ,
1717 "commit" : " git-cz" ,
18- "knip" : " knip"
18+ "knip" : " knip" ,
19+ "nx" : " NODE_OPTIONS='--import tsx' tsx --tsconfig=tsconfig.base.json ./node_modules/.bin/nx"
1920 },
2021 "private" : true ,
2122 "dependencies" : {
You can’t perform that action at this time.
0 commit comments